home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 2000-11-12 | 955 b | 39 lines |
- "FILE"="Xteq Systems X-Setup Plugin 6.0"
- "TYPE"="5"
- "COUNT"="1"
- "UIPATH"="Internet\Netscape Navigator"
- "NAME"="Clear URLs"
- "VERSION"="1.11"
- "LANGUAGE"="VBScript"
- "TEXT 1"="Clear typed URLs"
- "DESCRIPTION 1"="If you do not want that other people can see the URLs you have typed, click the first button."
- "DESCRIPTION 2"="This might not work with Communicator (Navigator 4.0) and above."
- "AUTHOR"="Xteq Systems"
- "CONTACTURL"="http://www.xteq.com"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"=" "
-
-
-
- sP="HKCU\Software\Netscape\Netscape Navigator\URL History\"
- Sub Plugin_Initialize
- if RegPathExists(sP)=false then
- Disable
- End if
- End Sub
-
- Sub Plugin_CheckData(ElementIndex)
- End Sub
-
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- i=RegEnumValues(sp)
- for l=1 to i
- Call RegDeleteValue(sp & RegEnumElement(l))
- Next
-
- Call MsgInformation("Cleared")
- End Sub
-
- Sub Plugin_Terminate
- End Sub
-